home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXT Education Software Sampler 1992 Fall
/
NeXT Education Software Sampler 1992 Fall.iso
/
SoundAndMusic
/
cmix
/
lib
/
breson.c
< prev
next >
Wrap
C/C++ Source or Header
|
1989-02-25
|
184b
|
12 lines
float breson(x,a,out,nvals)
float *x,*a,*out;
{
int i;
for(i=0; i<nvals; i++) {
out[i] = *a * x[i] + *(a+1) * *(a+3) - *(a+2) * *(a+4);
*(a+4) = *(a+3);
*(a+3) = out[i];
}
}